home *** CD-ROM | disk | FTP | other *** search
/ NetNews Offline 2 / NetNews Offline Volume 2.iso / news / comp / lang / c++-part1 / 2405 < prev    next >
Encoding:
Internet Message Format  |  1996-08-06  |  1.6 KB

  1. Path: ornews.intel.com!news
  2. From: thurman_b_miller@ccm2.hf.intel.com (Thurman Miller)
  3. Newsgroups: comp.lang.c++
  4. Subject: Re: HELP WITH MSVC++4.0
  5. Date: Wed, 17 Jan 1996 17:06:45 GMT
  6. Organization: Intel Corporation
  7. Message-ID: <4djada$j1m@ornews.intel.com>
  8. References: <4ddn9k$o5t@ns2.ptd.net>
  9. NNTP-Posting-Host: thurman-pc.ssd.intel.com
  10. X-Newsreader: Forte Free Agent 1.0.82
  11.  
  12. Elipsky@postoffice.ptd.net (Elipsky) wrote:
  13.  
  14. >-all help is appreciated-
  15.  
  16. >i am just starting out and need help with creating windows.
  17. >i learn from examples and cant find any on making windows 
  18. >plz email me with any thing to help.
  19.  
  20. >thanks
  21. >-eric-
  22. >elipsky@postoffice.ptd.net
  23.  
  24. First, you will get a better response on
  25. comp.os.ms-windows.programmer.tools.mfc
  26.  
  27. That said, it's very quite simple....
  28.  
  29. Create your project and select single form (not MDI) and on the last
  30. screen of prompting for new project, derive the view class from
  31. CFormView instead of CView.
  32.  
  33. When it's done creating the project, you'll notice four very similar
  34. file names:
  35.  
  36. MyApp.cpp
  37. MyAppDoc.cpp
  38. MyAppVw.cpp
  39. MyApp.rc
  40.  
  41. Double click on the MyApp.rc, then double click on the "dialog" tree
  42. item. Your window will be displayed along with a pallette for you to
  43. start adding things. Compile and run w/out changing any code. It
  44. should "work" (ie->display a nice window) but won't do anything.
  45.  
  46. Of course, now you're going to be completely lost because there's so
  47. much more....It's not the best, but I would recommend that you follow
  48. the tutorial that MS distributes, it'll at least give you an idea of
  49. what the heck Class Wizard is, and while you may choose not to use CW
  50. in the future, it will give you an idea of what is required.
  51.  
  52. Thurman
  53.  
  54.